home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000159_news@columbia.edu_Mon Apr 17 23:02:18 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25421
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Apr 1995 19:02:28 -0400
  3. Received: by apakabar.cc.columbia.edu id AA22888
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Apr 1995 19:02:26 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit and FTP
  9. Date: 17 Apr 1995 23:02:18 GMT
  10. Organization: Columbia University
  11. Lines: 33
  12. Message-Id: <3mus1q$mai@apakabar.cc.columbia.edu>
  13. References: <3mumis$voj@uwm.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3mumis$voj@uwm.edu>,
  18. Dennis B Meilicke <dbm@alpha1.csd.uwm.edu> wrote:
  19. : I was just reading the latest issue of Kermit News, and ran across the
  20. : following: 
  21. :    Another interesting property of the RESEND feature is that it can
  22. :    also be used to recover interrupted non-Kermit transfers, such as
  23. :    with Ymodem-G or FTP. As long as you have a partial file that was
  24. :    transferred in binary mode, by whatever means, you can continue the
  25. :    transfer from the point of failure using Kermit's new RESEND
  26. :    feature.
  27. : So.  How does one do FTP transfers using c-kermit?  Or is this a
  28. : reference to a feature in one of the other (MS-DOS?) versions of
  29. : kermit?
  30. One does not do FTP (or Ymodem-G, or Zmodem, ...) transfers in Kermit.
  31. (Strictly speaking, one *can* invoke X- Y- or Zmodem as an external
  32. protocol from a Kermit program, and use it over the same connection,
  33. given the appropriate X- Y- or Zmodem software, such as DSZ for DOS;
  34. but one cannot do FTP transfers over the same connection as one's
  35. Kermit connection, although one could conceivably invoke ftp from the
  36. Kermit prompt to transfer files over a separate connection.)
  37.  
  38. But if one WERE transferring a file in binary mode with ANY protocol --
  39. Kermit or FTP or Ymodem-G, etc -- and if the partially transferred file
  40. was not discarded, then you could use Kermit's new recovery feature to
  41. continue the transfer from the point of failure, even though the original
  42. transfer might not have been done with Kermit.
  43.  
  44. Does that clear it up?
  45.  
  46. - Frank